X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=contrib%2Farch-linux%2FPKGBUILD-git.nickle;h=fe6c2a76f05ef83c5cb1e893e4199cb30209f568;hp=9ed6546613f774a46ee67b940b7f0795e1253959;hb=93c1e29b07c331a5ca6e0f647b9d2e9266ed3014;hpb=bb46c9a1da5788a082e4483e576a5a6d3963507b diff --git a/contrib/arch-linux/PKGBUILD-git.nickle b/contrib/arch-linux/PKGBUILD-git.nickle index 9ed65466..fe6c2a76 100644 --- a/contrib/arch-linux/PKGBUILD-git.nickle +++ b/contrib/arch-linux/PKGBUILD-git.nickle @@ -1,11 +1,14 @@ -# Contributor: Bob Finch +# Original contributor: Bob Finch pkgname=nickle-git -pkgver=20100507 +pkgver=20100518 pkgrel=1 pkgdesc="A desk calculator language with powerful programming and scripting capabilities." arch=('i686' 'x86_64') url="http://keithp.com/git-repository/" license=('custom') +provides=('nickle') +conflicts=('nickle') +depends=('readline') makedepends=('git') _gitroot="git://keithp.com/git/nickle" @@ -13,17 +16,17 @@ _gitname="nickle" build() { cd "$srcdir" -# msg "Connecting to GIT server...." + msg "Connecting to GIT server...." if [ -d $_gitname ] ; then cd $_gitname && git pull origin -# msg "The local files are updated." + msg "The local files are updated." else git clone $_gitroot fi -# msg "GIT checkout done or server timeout" -# msg "Starting make..." + msg "GIT checkout done or server timeout" + msg "Starting make..." rm -rf "$srcdir/$_gitname-build" git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" @@ -39,5 +42,5 @@ build() { make DESTDIR="$pkgdir/" install install -D -m 644 COPYING\ - $startdir/pkg/usr/share/licenses/nickle/COPYING.txt + $startdir/pkg/usr/share/licenses/$_gitname/COPYING.txt }