diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-19 14:24:21 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-19 14:24:21 +0000 |
commit | e997c71ed3a345d4f002d6d2775db39051b7ea37 (patch) | |
tree | 98371ebcc0455141980bb1ddcfa5c604c3dca568 /community/zendframework | |
parent | 23f1a1fc12d7a571e9e2ada119fd9b95fbd8f18c (diff) | |
download | aports-e997c71ed3a345d4f002d6d2775db39051b7ea37.tar.bz2 aports-e997c71ed3a345d4f002d6d2775db39051b7ea37.tar.xz |
community/zendframework: moved from testing
Diffstat (limited to 'community/zendframework')
-rw-r--r-- | community/zendframework/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/community/zendframework/APKBUILD b/community/zendframework/APKBUILD new file mode 100644 index 0000000000..9f86220dde --- /dev/null +++ b/community/zendframework/APKBUILD @@ -0,0 +1,40 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=zendframework +pkgver=2.2.5 +pkgrel=0 +pkgdesc="PHP web application framework" +url="http://framework.zend.com/" +arch="noarch" +license="BSD" +depends="" +depends_dev="" +makedepends="" +install="" +subpackages="" +source="https://packages.zendframework.com/releases/ZendFramework-$pkgver/ZendFramework-$pkgver.tgz" + +_builddir="$srcdir"/ZendFramework-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" +} + +package() { + cd "$_builddir" + mkdir -p "$pkgdir"/usr/share/php/zend + cp -a "$_builddir"/* "$pkgdir"/usr/share/php/zend/ + +} + +md5sums="00b07173827269bf4ce5b40812f9fcc2 ZendFramework-2.2.5.tgz" +sha256sums="b4b5aaf3667eb333d5095f8f3d7c1701856b97edb6814ec6ec6e0e5e0f1ea7d5 ZendFramework-2.2.5.tgz" +sha512sums="51b2b5618847d21599b99e5286565bd060f186fb07cf2bb4b761f2f5991234ab67278788149ca0a2a8031747030d55a74e450834f47416e49c85a2e809f1c90c ZendFramework-2.2.5.tgz" |