summaryrefslogtreecommitdiff
path: root/APKBUILD.proto
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-01-29 09:06:43 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-01-29 09:06:43 +0000
commit21cd6680eee14cb6ab89ff95d8ca2413833800c7 (patch)
treefc0888eb5323e41fa09a05d71ce11bb150de7f9e /APKBUILD.proto
parent81f8737a6aa13c1d6944f061a1f21e5549ff4003 (diff)
downloadabuild-21cd6680eee14cb6ab89ff95d8ca2413833800c7.tar.gz
abuild-21cd6680eee14cb6ab89ff95d8ca2413833800c7.tar.bz2
abuild-21cd6680eee14cb6ab89ff95d8ca2413833800c7.tar.xz
abuild-21cd6680eee14cb6ab89ff95d8ca2413833800c7.zip
abuild: support for creation of new APKBUILD from template
abuild [-c] -n PKGNAME[-PKGVER] creates a directory with new APKBUILD. If -c is specified will sample init.d, conf.d and install script be copied as well.
Diffstat (limited to 'APKBUILD.proto')
-rw-r--r--APKBUILD.proto32
1 files changed, 0 insertions, 32 deletions
diff --git a/APKBUILD.proto b/APKBUILD.proto
deleted file mode 100644
index 0e08dea..0000000
--- a/APKBUILD.proto
+++ /dev/null
@@ -1,32 +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=""
-arch=""
-url=""
-license="GPL"
-depends=""
-makedepends=""
-install=
-subpackages="$pkgname-doc $pkgname-dev"
-source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make || return 1
- make DESTDIR="$pkgdir" install
-}
-
-md5sums="" #generate with 'abuild checksum'