APKBUILD examples:ACF

From Alpine Linux
Revision as of 07:43, 24 June 2011 by Fab (talk | contribs) (Created page with "ACF packages only needs a package() section. <pre> package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ACF packages only needs a package() section.

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir" install
}