From be9c79c6b03779d1182f78b1706bfb567c646597 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Thu, 14 Mar 2024 18:58:53 +0300 Subject: [PATCH] added ustash package --- packages/u/uthash/Pkgfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/u/uthash/Pkgfile diff --git a/packages/u/uthash/Pkgfile b/packages/u/uthash/Pkgfile new file mode 100644 index 0000000..5c8626a --- /dev/null +++ b/packages/u/uthash/Pkgfile @@ -0,0 +1,14 @@ +# Description: C macros for hash tables and more +# URL: https://troydhanson.github.io/uthash/ +# Maintainer: Alexander Zhirov + +name=uthash +version=2.3.0 +release=1 +source=(https://github.com/troydhanson/uthash/archive/v$version/$name-v$version.tar.gz) + +build() { + cd $name-$version + + install -vDm 644 src/* -t "$PKG/usr/include" +}