Commit 9c57e1f3b1f13721341c14f0e7ad87033c9a08a9

Authored by Perry Werneck
1 parent c3df40c4
Exists in master and in 1 other branch develop

Fixing arch build.

Showing 1 changed file with 4 additions and 2 deletions   Show diff stats
arch/PKGBUILD
... ... @@ -9,7 +9,7 @@ url="https://portal.softwarepublico.gov.br/social/pw3270/"
9 9 arch=(i686 x86_64)
10 10 license=(GPL)
11 11 depends=()
12   -makedepends=(autoconf automake make openssl lib3270 gtk3 python3)
  12 +makedepends=(autoconf automake make openssl lib3270 gtk3 python3 libtool)
13 13 checkdepends=()
14 14  
15 15 #groups=(gnome)
... ... @@ -22,8 +22,10 @@ conflicts=($pkgname)
22 22  
23 23 prepare() {
24 24 cd $pkgname-$pkgver
  25 + mkdir -p scripts
  26 + touch scripts/config.rpath
25 27 NOCONFIGURE=1 ./autogen.sh
26   - ./configure --prefix=/usr
  28 + ./configure --prefix=/usr --disable-static
27 29 }
28 30  
29 31 build() {
... ...