diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2017-09-19 17:17:04 +0300 |
---|---|---|
committer | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2017-09-19 17:17:04 +0300 |
commit | fb1062131ac950b1076b675cdd0883cc1fc016b7 (patch) | |
tree | 6cde065409c0c272069f491cb295ded66a034775 /community/homer-api/APKBUILD | |
parent | 8c160033aa9cc65eb70f6e5891876dc6c6d6fd88 (diff) | |
download | aports-fb1062131ac950b1076b675cdd0883cc1fc016b7.tar.bz2 aports-fb1062131ac950b1076b675cdd0883cc1fc016b7.tar.xz |
Revert "main/homer-api: moved from community"
This reverts commit c5090b0c13f6d6f1fe2a52185100dbc7c9c549b6.
Diffstat (limited to 'community/homer-api/APKBUILD')
-rw-r--r-- | community/homer-api/APKBUILD | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/community/homer-api/APKBUILD b/community/homer-api/APKBUILD new file mode 100644 index 0000000000..6ef39246e3 --- /dev/null +++ b/community/homer-api/APKBUILD @@ -0,0 +1,71 @@ +# Contributor: Leonardo Arena <rnalrd@alpinelinux.org> +# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> +pkgname=homer-api +pkgver=5.0.6 +pkgrel=11 +pkgdesc="HOMER API" +url="https://github.com/sipcapture/homer-api" +arch="noarch" +license="GPL" +depends="homer-db php7-ctype php7-json php7-pdo_mysql php7-session" +makedepends="$depends_dev" +options="!check" +subpackages="$pkgname-doc homer-api-ldap homer-db" +source="$pkgname-$pkgver.tar.gz::https://github.com/sipcapture/homer-api/archive/$pkgver.tar.gz + homer_db_init + php7.patch + rotation-ini-path.patch" +builddir="$srcdir"/$pkgname-$pkgver + +build() { + return 0 +} + +package() { + cd "$builddir" + local file + local appdir=$pkgdir/usr/share/webapps/homer + + mkdir -p "$appdir" \ + "$pkgdir"/etc/homer \ + "$pkgdir"/usr/share/doc/homer-api + + mv api "$appdir" + + for file in configuration preferences; do + mv "$appdir"/api/${file}_example.php "$pkgdir"/etc/homer/$file.php + ln -s /etc/homer/$file.php "$appdir"/api + done + + cp -R examples "$pkgdir"/usr/share/doc/homer-api +} + +db() { + depends="mariadb-client perl perl-dbi perl-dbd-mysql" + + cd "$builddir" + mkdir -p \ + "$subpkgdir"/etc/periodic/daily \ + "$subpkgdir"/usr/share/homer-db + + install -D -m 644 scripts/rotation.ini \ + "$subpkgdir"/etc/homer/rotation.ini + cp -pr sql/* "$subpkgdir"/usr/share/homer-db + + install -D "$srcdir"/homer_db_init "$subpkgdir"/usr/bin/homer_db_init + cp -p scripts/homer_* "$subpkgdir"/usr/bin + ln -s /usr/bin/homer_rotate "$subpkgdir"/etc/periodic/daily +} + +ldap() { + depends="$pkgname php7-ldap" + + local dir=usr/share/webapps/homer/api/Authentication + mkdir -p "$subpkgdir"/$dir + mv "$pkgdir"/$dir/LDAP.php "$subpkgdir"/$dir +} + +sha512sums="620185c19bd348ba68bad3a1992b7d673d29dcfb8a0aeea437a2d31e90f0a21cf6f46a43f0041a583a14d9403e1d8574c6040da1dba397ec2d955b8aba9010d8 homer-api-5.0.6.tar.gz +e305af57a8445b45cb1e894aa34ceea3aeedb60740a636229d470d872f9ebb835e03985faeb685180a3e2c1eae29b49c841f8cbdb4236dbf0323f905a30b0bbb homer_db_init +068d7b03c51aed4c144b6f8382a367016432b5f2c22e79e19da516536bf22c9bec4fbedf81130e32d6d919be746610563295513412f14c565fc917bdc0a7b004 php7.patch +0328c4f645601be150f877a31a8c245908da9d9972bed6e1af50f2c43055c9f47376da30c666b6eaa0310637414f65906b88f9a339a1dfa14e1864c70b36fa77 rotation-ini-path.patch" |