first commit
This commit is contained in:
3
src/pangomm/.gitignore
vendored
Normal file
3
src/pangomm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/pangomm/changes.md
Normal file
2
src/pangomm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.46.3
|
||||
First version
|
19
src/pangomm/pkg.sh
Normal file
19
src/pangomm/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="pangomm"
|
||||
DESC="Provides a C++ interface to Pango"
|
||||
VERSION="2.46.3"
|
||||
FILES=("https://download.gnome.org/sources/pangomm/2.46/pangomm-$VERSION.tar.xz")
|
||||
HASHES=("7af783bb04de766fafaaad26c9ed475a")
|
||||
DEPENDS=("cairomm" "glibmm" "pango")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user