diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-28 19:41:14 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-28 19:41:14 -0200 |
commit | 2ca02f2eaf0d245be22c1e22e6fffe91974e0a17 (patch) | |
tree | a6ee347c4e6e949a819512560c1c4bef58388d31 /libre | |
parent | 98e6613af5c36d274cac4d2731101e8925b171f9 (diff) | |
parent | 1694cff45f9d97eca19437caa0f7885c8604677e (diff) | |
download | abslibre-2ca02f2eaf0d245be22c1e22e6fffe91974e0a17.tar.gz abslibre-2ca02f2eaf0d245be22c1e22e6fffe91974e0a17.tar.bz2 abslibre-2ca02f2eaf0d245be22c1e22e6fffe91974e0a17.zip |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre')
-rw-r--r-- | libre/chroottools/PKGBUILD | 32 | ||||
-rw-r--r-- | libre/libretools/PKGBUILD | 11 | ||||
-rw-r--r-- | libre/makepkg-git/PKGBUILD | 49 |
3 files changed, 87 insertions, 5 deletions
diff --git a/libre/chroottools/PKGBUILD b/libre/chroottools/PKGBUILD new file mode 100644 index 000000000..d48b9015b --- /dev/null +++ b/libre/chroottools/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=chroottools +pkgver=20121128.1 +pkgdesc='Chroot tools for Arch and Parabola package maintainers' +url='http://projects.parabolagnulinux.org/packages/chroottools.git/' +license=('GPL') + +replaces=(devtools) +provides=(devtools) +conflicts=(devtools) + +pkgrel=1 +arch=('any') +depends=( + 'arch-install-scripts' # for pacstrap, used to make chroots + 'curl' + 'namcap' # to check packages made by makechrootpkg +) +source=("https://projects.parabolagnulinux.org/packages/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR=${pkgdir} install +} + +md5sums=('8f9b36b50466a278e02e29f0ca06d267') diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index bd1d8e59f..9217b4d02 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -4,15 +4,16 @@ pkgbase=libretools pkgname=(libretools libretools-pr libretools-mips64el) -pkgver=20121113 -pkgdesc="Scripts for Parabola development" +pkgver=20121128 +pkgdesc="Programs for Parabola development" url="https://projects.parabolagnulinux.org/libretools.git/" license=('GPL3+') pkgrel=1 arch=('any') -depends=(openssh rsync git wget devtools tokyocabinet) -source=(https://projects.parabolagnulinux.org/$pkgbase.git/snapshot/$pkgbase-$pkgver.tar.bz2) +groups=(base-devel) +depends=(openssh rsync git wget chroottools tokyocabinet) +source=(https://projects.parabolagnulinux.org/$pkgbase.git/snapshot/$pkgbase-$pkgver.tar) build() { cd "$srcdir/$pkgbase-$pkgver" @@ -44,4 +45,4 @@ package_libretools-mips64el() { make install-libretools-mips64el DESTDIR="$pkgdir" } -md5sums=('966fb9828f55f58e2aa974065e726621') +md5sums=('4c730066c2152f929ca63424019b165a') diff --git a/libre/makepkg-git/PKGBUILD b/libre/makepkg-git/PKGBUILD new file mode 100644 index 000000000..60453a927 --- /dev/null +++ b/libre/makepkg-git/PKGBUILD @@ -0,0 +1,49 @@ +# vim: set ts=2 sw=2 et: +# $Id: PKGBUILD 150148 2012-02-13 14:49:35Z dreisner $ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> +# Maintainer (Arch): Dan McGee <dan@archlinux.org> +# Maintainer (Arch): Dave Reisner <dave@archlinux.org> + +_pkgname=pacman +pkgname=makepkg-git +_relver=4.0.3 +_gitver=2abe1f16461133c0dc386f8ecb8b06865c22940b +pkgver=${_relver}.git + +provides=($_pkgname=$pkgver) +replaces=(pacman-makepkg-git) +conflicts=(pacman-makepkg-git) + +pkgrel=2 + +pkgdesc="Pacman's makepkg, built from git sources" +#arch=('i686' 'x86_64' 'mips64el') +arch=('any') +url="http://www.archlinux.org/pacman/" +license=('GPL') +#groups=('base') +depends=('bash' 'libarchive>=3.0.2' 'curl>=7.19.4' 'gpgme') +makedepends=('asciidoc') +optdepends=('fakeroot: for makepkg usage as normal user') +#backup=(etc/pacman.conf etc/makepkg.conf) +#install=pacman.install +options=(!libtool) +source=(https://projects.archlinux.org/pacman.git/snapshot/$_pkgname-$_gitver.tar) +md5sums=('2152bdff59dcab8e7d36103a4756e5bf') + +build() { + cd $srcdir/$_pkgname-$_gitver + + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var + make +} + +check() { + make -C "$_pkgname-$_gitver" check +} + +package() { + install -Dm755 $srcdir/$_pkgname-$_gitver/scripts/makepkg $pkgdir/usr/bin/makepkg-git +} |