contrib/gtk-sharp/Pkgfile

28 lines
618 B
Plaintext
Raw Normal View History

2019-08-04 16:15:50 +02:00
# Description: C# bindings for GTK
2020-06-01 17:45:48 +02:00
# URL: https://www.mono-project.com/docs/gui/gtksharp/
2019-08-04 16:15:50 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: glade gtk mono
2019-08-04 16:15:50 +02:00
name=gtk-sharp
version=2.12.45
release=4
2019-08-04 16:15:50 +02:00
source=(https://download.mono-project.com/sources/${name}212/gtk-sharp-$version.tar.gz)
build() {
cd $name-$version
2020-02-21 01:58:51 +01:00
sed -e 's/SUBDIRS = test/SUBDIRS =/g' -i sample/Makefile.am
sed -e 's/SUBDIRS = test/SUBDIRS =/g' -i sample/Makefile.in
autoreconf -fvi
2020-02-21 01:58:51 +01:00
./configure --prefix=/usr \
--disable-static
2019-08-04 16:15:50 +02:00
make
2019-08-04 16:15:50 +02:00
make DESTDIR=$PKG \
PREFIX=/usr \
2020-02-21 01:58:51 +01:00
MANDIR=/usr/share/man \
2019-08-04 16:15:50 +02:00
install
}