-
Notifications
You must be signed in to change notification settings - Fork 496
/
Copy pathPKGBUILD
42 lines (35 loc) · 985 Bytes
/
PKGBUILD
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
39
40
41
42
# Maintainer: Yong-hyu, Ban <[email protected]>
# Maintainer: Eon Jeong <[email protected]>
pkgname=axel
pkgver=2.17.14
pkgrel=1
pkgdesc="Light command line download accelerator for Linux and Unix"
arch=('i686' 'x86_64')
license=('GPL')
url="https://github.com/axel-download-accelerator/axel"
msys2_references=(
"cpe: cpe:/a:axel:axel"
"cpe: cpe:/a:axel_project:axel"
)
groups=()
depends=('openssl' 'gettext')
makedepends=('openssl-devel' 'gettext-devel' 'autotools' 'gcc')
options=()
source=("https://github.com/axel-download-accelerator/axel/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('73f3aeafcb00b8101b212fcf47969a4962e7a1b50843306178b527a9942d8785')
prepare() {
cat /dev/null
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--mandir=/usr/share/man \
--disable-nls
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}