parcellite: fix pre-configure

Running `./autogen.sh` makes the build stall waiting for
a user input. Use `autoreconf -if` instead and add
gettext-devel and glib-devel to the hostmakedepends.
This commit is contained in:
Jürgen Buchmüller 2016-05-03 10:47:17 +02:00
parent 453be253cc
commit 2a7e317403
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
# Template file for 'parcellite'
pkgname=parcellite
version=1.1.9
revision=1
hostmakedepends="automake intltool pkg-config"
revision=2
hostmakedepends="automake intltool gettext-devel glib-devel pkg-config"
makedepends="gtk+-devel"
build_style=gnu-configure
short_desc="An X11 clipboard management utility"
@ -14,5 +14,5 @@ distfiles="${SOURCEFORGE_SITE}/parcellite/${version}/parcellite-${version}.tar.g
checksum=cba89585082eebbe848ac1c0023cc71a0184c0db24ebc5f8a21039e46d7f11d4
pre_configure() {
./autogen.sh
autoreconf -if
}