blob: 6bbfac8fa06879601c6f0cae9943d95d7f56d606 (
plain)
1 # Description: C preprocessor implementations of a hash table and a linked list
2 # URL: http://troydhanson.github.io/uthash/index.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=uthash
6 version=2.1.0
7 release=1
8 source=(https://github.com/troydhanson/$name/archive/v$version/$name-v$version.tar.gz)
9
10 build() {
11 cd $name-$version/src
12 install -d $PKG/usr/include/
13 install -m 0644 -t $PKG/usr/include/ *.h
14 }
|