summaryrefslogtreecommitdiff
path: root/motif/Pkgfile
blob: 7e82159f180710f559847658693887a12e5603ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Description:	A simple widget toolkit for X
# URL:		https://motif.ics.com/
# Maintainer:	Shokara Kou, shokara at kalli dot st
# Depends on:	libjpeg-turbo libpng xorg-libxft xorg-libxmu xorg-libxp xorg-xbitmaps xorg-xorgproto

name=motif
version=2.3.8
release=1
source=(https://downloads.sourceforge.net/project/motif/Motif%20$version%20Source%20Code/motif-$version.tar.gz
	0001-wmluiltok-main.patch
	0002-no-demos.patch)

build() {
	cd $name-$version

	patch -Np0 <$SRC/0001-wmluiltok-main.patch
	patch -Np1 <$SRC/0002-no-demos.patch
	rm -fr demos

	touch NEWS AUTHORS

	autoreconf -if
	./configure \
		--prefix=/usr

	sed -i -e 's/ -shared / -Wl,-Ol,--as-needed\0/g' libtool

	make
	make DESTDIR=$PKG install

	rm -fr $PKG/usr/share/doc
}