summaryrefslogtreecommitdiffstats
path: root/sample.APKBUILD
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-04 15:15:37 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-04 15:15:37 +0000
commitcb7bb27a144083afe9b3f5955d8bc6def33eee9b (patch)
treecde32810741245119d21007348a20728e4a01be7 /sample.APKBUILD
parent92d947b000ca27cd446c7050dfd45c2d4fb5113f (diff)
downloadalpine-iso.tar.bz2
alpine-iso.tar.xz
alpine-mini: add wifi tools, firmware and opensslalpine-iso
Diffstat (limited to 'sample.APKBUILD')
-rw-r--r--sample.APKBUILD49
1 files changed, 0 insertions, 49 deletions
diff --git a/sample.APKBUILD b/sample.APKBUILD
deleted file mode 100644
index 1754973..0000000
--- a/sample.APKBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# 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>
-# Maintainer: Your Name <youremail@domain.com>
-pkgname=NAME
-pkgver=VERSION
-pkgrel=0
-pkgdesc=""
-url=""
-license="GPL"
-depends=
-makedepends=
-install=
-subpackages="$pkgname-dev $pkgname-doc"
-source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
-
-# append extra dependencies to -dev subpackage
-# remove if not used.
-# depends_dev="somepackage-dev"
-
-_builddir="$srcdir"/$pkgname-$pkgver
-
-prepare() {
- cd "$_builddir"
- # apply patches here
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install
-
- # 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
-}
-
-md5sums="" #generate with 'abuild checksum'