blob: 43bab6eeae3710abe012b352acccecb4f1daac9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name=uthash
version=2.3.0
release=1
source="https://github.com/troydhanson/$name/archive/v$version/$name-$version.tar.gz"
build() {
cd src
# create directory for header files
install -dm755 $PKG/usr/include/
# install header files in /usr/include
for h in *.h; do
install -m 644 ${h} $PKG/usr/include/
done
}
|