abuild/sample.APKBUILD

50 lines
1.2 KiB
Plaintext
Raw Normal View History

2008-10-25 11:00:18 +00:00
# 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>
2009-01-20 10:32:28 +00:00
# Maintainer: Your Name <youremail@domain.com>
2008-10-25 11:00:18 +00:00
pkgname=NAME
pkgver=VERSION
pkgrel=0
pkgdesc=""
url=""
2009-01-20 10:32:28 +00:00
license="GPL"
2009-12-30 08:51:38 +00:00
depends=
makedepends=
2008-10-25 11:00:18 +00:00
install=
2009-07-01 13:17:02 +00:00
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
2008-10-25 11:00:18 +00:00
2009-07-01 13:17:02 +00:00
# append extra dependencies to -dev subpackage
# remove if not used.
# depends_dev="somepackage-dev"
2009-12-30 08:51:38 +00:00
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
2008-10-25 11:00:18 +00:00
2009-12-30 08:51:38 +00:00
build() {
cd "$_builddir"
2009-01-20 10:32:28 +00:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info
2008-10-25 11:00:18 +00:00
make || return 1
2009-12-30 08:51:38 +00:00
}
package() {
cd "$_builddir"
2009-01-20 10:32:28 +00:00
make DESTDIR="$pkgdir" install
2009-07-01 13:17:02 +00:00
# remove the 2 lines below (and this) if there is no init.d script
# install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
# install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
2008-10-25 11:00:18 +00:00
}
2008-10-30 15:55:25 +00:00
md5sums="" #generate with 'abuild checksum'