blob: 4f7e908616fffe4c169040c945eb114b45433a9b (
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
|
# Maintainer: Alfred Roos alfred@stensatter.se
pkgname=arraylist-git
pkgver=1
pkgrel=1
pkgdesc="Dynamic array list simular to javas ArrayList in c"
arch=(x86_64)
url="https://github.com/spynetS/ArrayList"
license=('MIT')
makedepends=(gcc git)
source=( "git+$url.git" )
noextract=()
md5sums=('SKIP')
validpgpkeys=()
build() {
cd ArrayList
./build.sh
}
package() {
cd ArrayList
cd build
install -Dm755 "./libarraylist.so" "$pkgdir/usr/lib/libarraylist.so"
install -Dm655 "./arraylist.h" "$pkgdir/usr/include/arraylist.h"
}
|