diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-01 06:27:41 -0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-06-01 16:17:05 +0300 |
commit | edfee4f71caab223609f86f4d19986fc5159f0f4 (patch) | |
tree | 57ebc9e4b912a3b065217d5e04398a6f8a781d60 /community/xterm | |
parent | 5291f0c1a7442dad4f5c17895bd8642fbd9ca77b (diff) | |
download | aports-edfee4f71caab223609f86f4d19986fc5159f0f4.tar.bz2 aports-edfee4f71caab223609f86f4d19986fc5159f0f4.tar.xz |
community/xterm: upgrade to 346
Diffstat (limited to 'community/xterm')
-rw-r--r-- | community/xterm/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/xterm/APKBUILD b/community/xterm/APKBUILD index fedb8c2d6e..bbdf95c6fa 100644 --- a/community/xterm/APKBUILD +++ b/community/xterm/APKBUILD @@ -1,21 +1,19 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=xterm -pkgver=344 +pkgver=346 pkgrel=0 pkgdesc="X Terminal Emulator" +options="!check" # Requires vttest url="http://invisible-island.net/xterm" arch="all" license="MIT" -depends="" makedepends="libxaw-dev libxft-dev ncurses-dev" subpackages="$pkgname-doc" source="ftp://ftp.invisible-island.net/xterm/$pkgname-$pkgver.tgz posix-ptys.patch" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -52,9 +50,11 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install + install -m755 -d "$pkgdir"/usr/share/applications + install -m644 "$builddir"/xterm.desktop "$pkgdir"/usr/share/applications/ + install -m644 "$builddir"/uxterm.desktop "$pkgdir"/usr/share/applications/ } -sha512sums="872f69e13ad8e26de355f7611dabc7a66e2f6b00313b440b8054cc4fa0fbde936dd8d54ec09c892e8760080acaccbd8b7e72cdcbebb291dd92e01593eb14e91a xterm-344.tgz +sha512sums="ef0db8132a88b8bd980343007a61ca3c4c1b7ece23ef8e72245a17fa8305fa4dfed9cdf0613d8daf60da53fb8b03d41acd22aee04f2d51aeffb4a340268f51f7 xterm-346.tgz 03722dc3ebe8067a1edf4673ce2e5132832e52818f4e122bfbd3846a4ebf0ca25bea999d98455b87ec572931becbbb0432e22c75b0fb5371a81c8acf0c4e9f98 posix-ptys.patch" |