added APKBUILD.proto

This commit is contained in:
Natanael Copa 2008-10-25 11:00:18 +00:00
parent dddc550364
commit f463f82602
1 changed files with 27 additions and 0 deletions

27
APKBUILD.proto Normal file
View File

@ -0,0 +1,27 @@
# This is an example APKBUILD file. Use this as a start to creating your own,
# and remove these comments.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Your Name <youremail@domain.com>
pkgname=NAME
pkgver=VERSION
pkgrel=0
pkgdesc=""
arch=""
url=""
license='GPL'
depends=""
makedepends=""
install=
source="$pkgname-$pkgver.tar.gz"
md5sums="" #generate with 'makepkg -g'
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir/" install
}