diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/findutils | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/findutils')
-rw-r--r-- | abs/core-testing/findutils/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/abs/core-testing/findutils/PKGBUILD b/abs/core-testing/findutils/PKGBUILD deleted file mode 100644 index 0027aca..0000000 --- a/abs/core-testing/findutils/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 2673 2008-06-11 02:45:30Z eric $ -# Maintainer: judd <jvinet@zeroflux.org> -pkgname=findutils -pkgver=4.4.0 -pkgrel=10 -pkgdesc="GNU utilities to locate files" -arch=(i686 x86_64) -license=('GPL3') -groups=('base') -depends=('glibc>=2.8') -url="http://www.gnu.org/software/findutils" -source=(ftp://ftp.gnu.org/pub/gnu/findutils/findutils-$pkgver.tar.gz) -md5sums=('49e769ac4382fae6f104f99d54d0a112') - -build() { - cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/usr - make || return 1 - # believe it or not, the Makefile really wants to remove /usr/var, so - # we let it... - mkdir -p $startdir/pkg/usr/var - make DESTDIR=$startdir/pkg install - rm -rf $startdir/pkg/usr/libexec - - # remove locate utils (we use slocate instead) - rm -f $startdir/pkg/usr/bin/{locate,updatedb} - rm -f $startdir/pkg/usr/share/man/man1/{updatedb.1,locate.1} - rm -f $startdir/pkg/usr/share/man/man5/locatedb.5 - rmdir $startdir/pkg/usr/var -} |