diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-28 16:06:37 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-03-01 02:45:42 +0000 |
commit | 1b3dd01a4cd42c70ff508bcc4d94529c81ab08ee (patch) | |
tree | 1c4b5b606fb2162b8f4ad781f583861b1625a6e5 /main/texinfo/APKBUILD | |
parent | 1518071b35888b926b323da3f612e99349c53aa6 (diff) | |
download | aports-1b3dd01a4cd42c70ff508bcc4d94529c81ab08ee.tar.bz2 aports-1b3dd01a4cd42c70ff508bcc4d94529c81ab08ee.tar.xz |
main/texinfo: fix license, mark no tests
Diffstat (limited to 'main/texinfo/APKBUILD')
-rw-r--r-- | main/texinfo/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/main/texinfo/APKBUILD b/main/texinfo/APKBUILD index 0b2640fea2..4ddfad2c51 100644 --- a/main/texinfo/APKBUILD +++ b/main/texinfo/APKBUILD @@ -1,11 +1,12 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=texinfo pkgver=6.5 -pkgrel=0 +pkgrel=1 pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file" url="https://www.gnu.org/software/texinfo/" arch="all" -license='GPL3+' +options="!check" # Test dependencies are not packaged +license="GPL-3.0+" depends="perl" makedepends="ncurses-dev perl-dev" subpackages="$pkgname-doc" @@ -17,14 +18,13 @@ build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - || return 1 - make || return 1 + --prefix=/usr + make } package() { cd "$builddir" - make DESTDIR="$pkgdir"/ install || return 1 + make DESTDIR="$pkgdir"/ install rm -f "$pkgdir"/usr/share/info/dir gzip "$pkgdir"/usr/share/info/* |