blob: 69b6d23938aa7a1839bab186c90bec8c99857fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Nahuel Morata <nahuelmorata@gmail.com>
# Contributor: Christoph Hoopmann <choopm at 0pointer.org>
pkgname=codeigniter
pkgver=3.1.11
pkgrel=1
pkgdesc="An object-oriented web-application framework for PHP projects"
arch=('any')
url="http://www.codeigniter.com"
license=('MIT')
depends=('php')
source=("codeigniter-create-project" "https://github.com/bcit-ci/CodeIgniter/archive/$pkgver.zip")
sha256sums=('b938a7c8f789402f0f97f2a18ce54d2cc9e7f89837d5c7b4e678a1ac1668b56b'
'03ef0b3788ef67f1b21e811bbeb20dab04ed1179c890b1bed347c8cc8f714e77')
build() {
true
}
package() {
cd "$srcdir/CodeIgniter-$pkgver/"
install -Dm644 license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -d "$pkgdir/usr/share/pear/$pkgname"
cp -R index.php application system "$pkgdir/usr/share/pear/$pkgname"
install -d "$pkgdir/usr/share/doc/$pkgname"
cp -R user_guide/* "$pkgdir/usr/share/doc/$pkgname"
find $pkgdir/usr/share -type f -exec chmod -x {} \;
install -d "$pkgdir/usr/bin"
install -Dm755 ../codeigniter-create-project "$pkgdir/usr/bin"
}
|