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: libglade mono
|
|
|
|
|
|
|
|
name=gtk-sharp
|
|
|
|
version=2.12.45
|
2020-02-21 01:58:51 +01:00
|
|
|
release=2
|
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
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static
|
2019-08-04 16:15:50 +02:00
|
|
|
make
|
|
|
|
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
|
|
|
|
}
|