Compare commits

...
1 Commits
Author SHA1 Message Date
sisungo 4f6837b076 feat: add package gperf
Signed-off-by: sisungo <[email protected]>
2026-08-18 21:12:39 +08:00
+24
View File
@@ -0,0 +1,24 @@
from lib import arch, cpp
from lib.make import *
version("3.3")
description("GNU perfect hash function generator")
maintainer("sisungo <[email protected]>")
source_url("https://ftp.gnu.org/pub/gnu/gperf/gperf-3.3.tar.gz")
builddep("shortcut/c++")
builddep("shortcut/autotools")
def build():
cpp.configure()
cpp.make()
cpp.make_install()
on_build(build)
package("gperf")
dep("libcxx @same-arch")
cpp.use_auto_pack(["bin"])