first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/graphite2/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/graphite2/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.3.14
First version

20
src/graphite2/pkg.sh Normal file
View File

@ -0,0 +1,20 @@
NAME="graphite2"
DESC="Rendering engine for graphite fonts"
VERSION="1.3.14"
FILES=("https://github.com/silnrsi/graphite/releases/download/$VERSION/graphite2-$VERSION.tgz")
HASHES=("1bccb985a7da01092bfb53bb5041e836")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tgz
cd $NAME-$VERSION
sed -i '/cmptest/d' tests/CMakeLists.txt
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make && make DESTDIR=${ROOTDIR} install
cd ../.. && rm -rf $NAME-$VERSION
}