diff options
author | prspkt <prspkt@protonmail.com> | 2018-07-06 13:19:41 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-13 16:57:44 +0000 |
commit | 2b803beb0d7ef57a0d99c1e5a1e204171537644e (patch) | |
tree | 1ed68511dc546a0bb33305d68c7b41d0ec4e8b67 /main/gptfdisk/APKBUILD | |
parent | 831a109536f253bffc90b37b05c27d3199d219ab (diff) | |
download | aports-2b803beb0d7ef57a0d99c1e5a1e204171537644e.tar.bz2 aports-2b803beb0d7ef57a0d99c1e5a1e204171537644e.tar.xz |
main/gptfdisk: clarify license, use https
Diffstat (limited to 'main/gptfdisk/APKBUILD')
-rw-r--r-- | main/gptfdisk/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/gptfdisk/APKBUILD b/main/gptfdisk/APKBUILD index 63947e132f..3b04136ff1 100644 --- a/main/gptfdisk/APKBUILD +++ b/main/gptfdisk/APKBUILD @@ -4,12 +4,12 @@ pkgver=1.0.4 pkgrel=0 pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks" arch="all" -url="http://www.rodsbooks.com/gdisk/" +url="https://www.rodsbooks.com/gdisk" options="!check" # No test suite. -license="GPL-2.0+" +license="GPL-2.0-or-later" makedepends="ncurses-dev e2fsprogs-dev popt-dev linux-headers" subpackages="$pkgname-doc sgdisk" -source="http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz" +source="https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz" build() { cd "$builddir" @@ -20,7 +20,7 @@ package() { cd "$builddir" mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8 - for i in gdisk cgdisk sgdisk fixparts; do + local i; for i in gdisk cgdisk sgdisk fixparts; do install $i "$pkgdir"/usr/bin/ install $i.8 "$pkgdir"/usr/share/man/man8/ done |