first commit
This commit is contained in:
3
src/graphite2/.gitignore
vendored
Normal file
3
src/graphite2/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/graphite2/changes.md
Normal file
2
src/graphite2/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.3.14
|
||||
First version
|
20
src/graphite2/pkg.sh
Normal file
20
src/graphite2/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user