Initial Commit - Copy from Altus Metrum AltOS
This commit is contained in:
46
contrib/arch-linux/PKGBUILD-git.nickle
Normal file
46
contrib/arch-linux/PKGBUILD-git.nickle
Normal file
@@ -0,0 +1,46 @@
|
||||
# Original contributor: Bob Finch <w9ya@qrpqrci.net>
|
||||
pkgname=nickle-git
|
||||
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"
|
||||
_gitname="nickle"
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
msg "Connecting to GIT server...."
|
||||
|
||||
if [ -d $_gitname ] ; then
|
||||
cd $_gitname && git pull origin
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone $_gitroot
|
||||
fi
|
||||
|
||||
msg "GIT checkout done or server timeout"
|
||||
msg "Starting make..."
|
||||
|
||||
rm -rf "$srcdir/$_gitname-build"
|
||||
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
|
||||
cd "$srcdir/$_gitname-build"
|
||||
|
||||
#
|
||||
# BUILD HERE
|
||||
#
|
||||
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr
|
||||
make || return 1
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
install -D -m 644 COPYING\
|
||||
$startdir/pkg/usr/share/licenses/$_gitname/COPYING.txt
|
||||
}
|
||||
Reference in New Issue
Block a user