diff options
author | Britney Fransen <brfransen@gmail.com> | 2015-02-19 18:16:16 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2015-02-19 18:16:16 (GMT) |
commit | 8de064f6e96f960cdbfe6868d9957a4613f704df (patch) | |
tree | 4e73a420991733450d013529c0fee60e0365297a /abs/not_built/extra | |
parent | 0374b16f1e15ba1819b62bd5a6e0076ac7b243d0 (diff) | |
parent | 6fde8cd5e74f0840e01988e743464fe91c0a28f8 (diff) | |
download | linhes_pkgbuild-8de064f6e96f960cdbfe6868d9957a4613f704df.zip linhes_pkgbuild-8de064f6e96f960cdbfe6868d9957a4613f704df.tar.gz linhes_pkgbuild-8de064f6e96f960cdbfe6868d9957a4613f704df.tar.bz2 |
Merge branch 'testing'
Diffstat (limited to 'abs/not_built/extra')
-rw-r--r-- | abs/not_built/extra/community/patchutils/PKGBUILD | 27 | ||||
-rw-r--r-- | abs/not_built/extra/icon-naming-utils/PKGBUILD | 28 | ||||
-rw-r--r-- | abs/not_built/extra/mupen64plus/PKGBUILD | 33 |
3 files changed, 0 insertions, 88 deletions
diff --git a/abs/not_built/extra/community/patchutils/PKGBUILD b/abs/not_built/extra/community/patchutils/PKGBUILD deleted file mode 100644 index 8aedbf0..0000000 --- a/abs/not_built/extra/community/patchutils/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# $Id$ -# Contributor: Aurelien Foret <orelien@chez.com> -# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org> - -pkgname=patchutils -pkgver=0.3.2 -pkgrel=1 -pkgdesc="A small collection of programs that operate on patch files" -license=('GPL') -url="http://cyberelk.net/tim/patchutils/" -depends=('perl') -arch=('i686' 'x86_64') -source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.bz2) -md5sums=('74607b4a28c9009c6aeeed0e91098917') - -build() { - cd $srcdir/$pkgname-$pkgver - - ./configure --prefix=/usr - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - - make DESTDIR=$pkgdir install -} diff --git a/abs/not_built/extra/icon-naming-utils/PKGBUILD b/abs/not_built/extra/icon-naming-utils/PKGBUILD deleted file mode 100644 index 5496c29..0000000 --- a/abs/not_built/extra/icon-naming-utils/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 33029 2009-04-03 21:35:27Z jgc $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: William Rea <sillywilly@gmail.com> - -pkgname=icon-naming-utils -pkgver=0.8.90 -pkgrel=2 -pkgdesc="Maps the new names of icons for Tango to the legacy names used by the GNOME and KDE desktops." -arch=('i686' 'x86_64') -license=('GPL') -url="http://tango.freedesktop.org/" -depends=('perl-xml-simple') -source=(http://tango.freedesktop.org/releases/${pkgname}-${pkgver}.tar.bz2) -md5sums=('dd8108b56130b9eedc4042df634efa66') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc \ - --libexecdir=/usr/lib/icon-naming-utils \ - --localstatedir=/var || return 1 - make || return 1 -} -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install || return 1 - mv "${pkgdir}/usr/share/pkgconfig" "${pkgdir}/usr/lib/pkgconfig" || return 1 -} - diff --git a/abs/not_built/extra/mupen64plus/PKGBUILD b/abs/not_built/extra/mupen64plus/PKGBUILD deleted file mode 100644 index c7835c0..0000000 --- a/abs/not_built/extra/mupen64plus/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 78487 2012-10-19 16:17:59Z jelle $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Thomas Dziedzic < gostrc at gmail > -# Contributor: Laurent Carlier <lordheavym@gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: Zephyr - -pkgname=mupen64plus -pkgver=1.99.5 -pkgrel=3 -pkgdesc='Nintendo64 Emulator' -arch=('i686' 'x86_64') -url='http://code.google.com/p/mupen64plus/' -license=('GPL') -depends=('glu' 'libgl' 'libsamplerate' 'libpng' 'sdl' 'freetype2') -makedepends=('mesa') -source=("http://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-${pkgver}.tar.gz") -md5sums=('93772a6d6fc6a63353462deae8a6db71') - -build() { - cd mupen64plus-bundle-src-${pkgver} - - sh m64p_build.sh -} - -package() { - cd mupen64plus-bundle-src-$pkgver - - # set LDCONFIG since we are using fakeroot and scripts run root commands by checking the uid - ./m64p_install.sh DESTDIR="$pkgdir" PREFIX='/usr' MANDIR='/usr/share/man/man6' LDCONFIG='true' -} - -# vim: ts=2:sw=2:et |