diff options
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | pkgbuild/PKGBUILD.in | 35 |
3 files changed, 41 insertions, 4 deletions
@@ -61,3 +61,7 @@ | |||
61 | /src/bin/*_generated.h | 61 | /src/bin/*_generated.h |
62 | /man/Makefile | 62 | /man/Makefile |
63 | /man/Makefile.in | 63 | /man/Makefile.in |
64 | pkgbuild/PKGBUILD | ||
65 | pkgbuild/pkg | ||
66 | pkgbuild/src | ||
67 | pkgbuild/*.tar.xz | ||
diff --git a/configure.ac b/configure.ac index c3ccc49..95759d5 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. | |||
3 | # get rid of that stupid cache mechanism | 3 | # get rid of that stupid cache mechanism |
4 | rm -f config.cache | 4 | rm -f config.cache |
5 | 5 | ||
6 | AC_INIT([terminology], [0.3.0], [enlightenment-devel@lists.sourceforge.net]) | 6 | AC_INIT([terminology], [0.3.50], [enlightenment-devel@lists.sourceforge.net]) |
7 | AC_PREREQ([2.60]) | 7 | AC_PREREQ([2.60]) |
8 | AC_CONFIG_SRCDIR([configure.ac]) | 8 | AC_CONFIG_SRCDIR([configure.ac]) |
9 | AC_CONFIG_MACRO_DIR([m4]) | 9 | AC_CONFIG_MACRO_DIR([m4]) |
@@ -73,6 +73,7 @@ data/themes/Makefile | |||
73 | data/themes/images/Makefile | 73 | data/themes/images/Makefile |
74 | data/themes/sounds/Makefile | 74 | data/themes/sounds/Makefile |
75 | man/Makefile | 75 | man/Makefile |
76 | pkgbuild/PKGBUILD | ||
76 | ]) | 77 | ]) |
77 | 78 | ||
78 | AC_OUTPUT | 79 | AC_OUTPUT |
@@ -87,9 +88,6 @@ echo "------------------------------------------------------------------------" | |||
87 | echo "$PACKAGE $VERSION" | 88 | echo "$PACKAGE $VERSION" |
88 | echo "------------------------------------------------------------------------" | 89 | echo "------------------------------------------------------------------------" |
89 | echo | 90 | echo |
90 | echo "Configuration Options Summary:" | ||
91 | echo " Ecore IMF................: $have_ecore_imf" | ||
92 | echo | ||
93 | echo "Compilation................: make (or gmake)" | 91 | echo "Compilation................: make (or gmake)" |
94 | echo " CPPFLAGS.................: $CPPFLAGS" | 92 | echo " CPPFLAGS.................: $CPPFLAGS" |
95 | echo " CFLAGS...................: $CFLAGS" | 93 | echo " CFLAGS...................: $CFLAGS" |
diff --git a/pkgbuild/PKGBUILD.in b/pkgbuild/PKGBUILD.in new file mode 100644 index 0000000..101b944 --- /dev/null +++ b/pkgbuild/PKGBUILD.in | |||
@@ -0,0 +1,35 @@ | |||
1 | # Maintainer: Enlightenment Developers <enlightenment-devel@enlightenment.org> | ||
2 | pkgname=('terminology') | ||
3 | pkgver=@VERSION@ | ||
4 | pkgrel=1 | ||
5 | pkgdesc="Terminal emulator for Enlightenment - GIT development snapshot" | ||
6 | arch=('i686' 'x86_64' 'arm') | ||
7 | url="http://www.enlightenment.org" | ||
8 | license=('BSD') | ||
9 | depends=('elementary' 'efl') | ||
10 | optdepends=('efl_x11') | ||
11 | options=('strip' 'zipman' '!libtool' 'debug') | ||
12 | buildflags="-O2 -g -fvisibility=hidden -fomit-frame-pointer" | ||
13 | build() { | ||
14 | cd "../.." | ||
15 | make clean distclean | ||
16 | ./configure --prefix=/usr | ||
17 | make | ||
18 | } | ||
19 | |||
20 | #check() { | ||
21 | # cd "../.." | ||
22 | # make -k check | ||
23 | #} | ||
24 | |||
25 | package() { | ||
26 | cd "../.." | ||
27 | rm -rf $pkgdir/usr | ||
28 | make -j1 DESTDIR="$pkgdir/" install | ||
29 | install -Dm644 README $pkgdir/usr/share/$pkgname/README | ||
30 | install -Dm644 NEWS $pkgdir/usr/share/$pkgname/NEWS | ||
31 | install -Dm644 ChangeLog $pkgdir/usr/share/$pkgname/ChangeLog | ||
32 | install -Dm644 AUTHORS $pkgdir/usr/share/$pkgname/AUTHORS | ||
33 | install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING | ||
34 | ln -s ../licenses/$pkgname/COPYING $pkgdir/usr/share/$pkgname/COPYING | ||
35 | } | ||