diff options
-rwxr-xr-x | abuild.in | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -317,6 +317,12 @@ build() { : } +# generate a simple tar.gz package of pkgdir +targz() { + cd "$pkgdir" || return 1 + tar -czf "$PKGDEST"/$pkgname-$pkgver-r$pkgrel.tar.gz * +} + get_split_func() { # get the 'func' from "sub-pkg:func" local func=${1##*:} |