Commit 14e8bdb3a2ef598cfa93967b5dc974b982a7abc2
1 parent
486a6cd1
Exists in
master
and in
2 other branches
Updating control files.
Showing
3 changed files
with
12 additions
and
9 deletions
Show diff stats
arch/PKGBUILD
| ... | ... | @@ -2,14 +2,14 @@ |
| 2 | 2 | |
| 3 | 3 | pkgname=lib3270 |
| 4 | 4 | |
| 5 | -pkgver=5.3 | |
| 5 | +pkgver=5.4 | |
| 6 | 6 | pkgrel=0 |
| 7 | 7 | pkgdesc="TN3270 Access library" |
| 8 | -url="https://github.com/PerryWerneck/lib3270/" | |
| 8 | +url="https://github.com/PerryWerneck/lib3270" | |
| 9 | 9 | arch=(i686 x86_64) |
| 10 | 10 | license=(GPL) |
| 11 | 11 | depends=() |
| 12 | -makedepends=(autoconf automake make openssl) | |
| 12 | +makedepends=(autoconf automake make openssl libtool) | |
| 13 | 13 | checkdepends=() |
| 14 | 14 | |
| 15 | 15 | #groups=(gnome) |
| ... | ... | @@ -17,13 +17,15 @@ checkdepends=() |
| 17 | 17 | source=($pkgname-$pkgver.tar.xz) |
| 18 | 18 | sha256sums=('SKIP') |
| 19 | 19 | |
| 20 | -provides=($pkgname) | |
| 20 | +provides=($pkgname) | |
| 21 | 21 | 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() { |
| ... | ... | @@ -36,3 +38,4 @@ package() { |
| 36 | 38 | DESTDIR="$pkgdir" make install |
| 37 | 39 | } |
| 38 | 40 | |
| 41 | + | ... | ... |
debian/rules
rpm/lib3270.spec
| ... | ... | @@ -18,7 +18,7 @@ |
| 18 | 18 | |
| 19 | 19 | |
| 20 | 20 | Name: lib3270 |
| 21 | -Version: 5.3 | |
| 21 | +Version: 5.4 | |
| 22 | 22 | Release: 0 |
| 23 | 23 | Summary: TN3270 Access library |
| 24 | 24 | Group: Development/Libraries/C and C++ |
| ... | ... | @@ -74,14 +74,14 @@ Header files for the TN3270 access library. |
| 74 | 74 | %prep |
| 75 | 75 | %setup -q |
| 76 | 76 | NOCONFIGURE=1 ./autogen.sh |
| 77 | -%configure --with-release=%{release} | |
| 77 | +%configure --with-release=%{release} --disable-static | |
| 78 | 78 | |
| 79 | 79 | %build |
| 80 | 80 | make all %{?_smp_mflags} |
| 81 | 81 | |
| 82 | 82 | %install |
| 83 | 83 | %make_install |
| 84 | -%find_lang %{name} langfiles | |
| 84 | +%find_lang %{name}-%{MAJOR_VERSION}.%{MINOR_VERSION} langfiles | |
| 85 | 85 | |
| 86 | 86 | %fdupes %{buildroot}/%{_prefix} |
| 87 | 87 | ... | ... |