diff options
Diffstat (limited to 'abs/extra/community/ncdu/PKGBUILD')
-rw-r--r-- | abs/extra/community/ncdu/PKGBUILD | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/abs/extra/community/ncdu/PKGBUILD b/abs/extra/community/ncdu/PKGBUILD deleted file mode 100644 index a9f83e6..0000000 --- a/abs/extra/community/ncdu/PKGBUILD +++ /dev/null @@ -1,21 +0,0 @@ -# Contributor: lp76 <l.peduto@gmail.com> -# Maintainer: Daenyth <Daenyth+Arch AT gmail DOT com> -pkgname=ncdu -pkgver=1.7 -pkgrel=1 -pkgdesc="An NCurses version of the famous old 'du' unix command" -arch=('i686' 'x86_64') -url="http://dev.yorhel.nl/ncdu/" -license=('MIT') -depends=('ncurses') -source=(http://dev.yorhel.nl/download/$pkgname-$pkgver.tar.gz) -md5sums=('172047c29d232724cc62e773e82e592a') - -build() { - cd $srcdir/$pkgname-$pkgver - - ./configure --prefix=/usr || return 1 - make || return 1 - make DESTDIR=$pkgdir install || return 1 - install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE -} |