aboutsummaryrefslogtreecommitdiffstats
path: root/community/upx/APKBUILD
blob: c112e2e514b93b6214f69494895a3f79d52b9ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Maintainer: Mitch Tishmack <mitch.tishmack@gmail.com>
# TODO: unbundle lzma-sdk
pkgname=upx
pkgver=3.94
pkgrel=0
pkgdesc="The Ultimate Packer for eXecutables"
url="https://upx.github.io"
arch="all"
license="GPL-2.0 Public-Domain"
# perl-dev is used to generate man pages
makedepends="bash perl-dev ucl-dev zlib-dev"
subpackages="$pkgname-doc"
source="https://github.com/upx/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.xz
	0001-rm-broken-whitespace-check.patch"
builddir="$srcdir/$pkgname-$pkgver-src"

prepare() {
	default_prepare || return 1

	cd "$builddir"
	sed -i 's/ -O2/ /' src/Makefile
}

build() {
	cd "$builddir"

	make UPX_LZMADIR="$srcdir" all
}

package() {
	cd "$builddir"

	install -D -m 0755 src/upx.out "$pkgdir"/usr/bin/upx
	install -D -m 0644 doc/upx.1 "$pkgdir"/usr/share/man/man1/upx.1
}

sha512sums="b9e8e6e13b2a267a30a9c4e572243c4ebeff9600044193de38c84e8943e3cd30c9cdd7b270cc0bdf14c1078ac15250906238f8272cd97a7eb40f2588965c6151  upx-3.94-src.tar.xz
a41dd8b8e9e884c78c410a49b4486963f6dd90759ba49eb05123e81b8e4fbe3d23af2ba5c2acf64218b7edeec7df0793b4030d1375c167a183a4d70d21addf50  0001-rm-broken-whitespace-check.patch"