contrib/uthash/Pkgfile

15 lines
396 B
Plaintext
Raw Normal View History

2019-11-30 08:54:14 +01:00
# Description: C preprocessor implementations of a hash table and a linked list
# URL: http://troydhanson.github.io/uthash/index.html
2023-08-06 20:17:58 +02:00
# Maintainer: unmaintained
2019-11-30 08:54:14 +01:00
name=uthash
2021-02-27 04:34:18 +01:00
version=2.3.0
2019-11-30 08:54:14 +01:00
release=1
source=(https://github.com/troydhanson/$name/archive/v$version/$name-v$version.tar.gz)
build() {
2023-08-06 20:17:58 +02:00
cd $name-$version/src
install -d $PKG/usr/include/
install -m 0644 -t $PKG/usr/include/ *.h
2019-11-30 08:54:14 +01:00
}