blob: 54325b6f900e23d8b9233919fee58f902dd322d8 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Contributor:
# Maintainer: Paul Morgan <jumanjiman@gmail.com>
pkgname=createrepo_c
# This is awful, but it allows to create package with recent commits.
# Upstream has not tagged a release in nearly two years, but
# they have commits in master that we want to use.
# Follow the lead of 'git-describe' and
# append a number that represents the number of commits since last tag.
# After upstream releases a new tag, go back to normal alpine versioning.
# git_describe="0.10.0-48-g0cac54d"
treeish="0cac54d09b5a2140b625cabad95dc48898e25cdd"
upstream_tag=0.10.0
commits_since=48
pkgver=${upstream_tag}.${commits_since}
pkgrel=0
pkgdesc="C implementation of createrepo"
url="https://github.com/rpm-software-management/createrepo_c/"
arch="all"
license="GPL2"
makedepends="
bash-completion
bzip2-dev
cmake
curl-dev
expat-dev
file-dev
glib-dev
libressl-dev
libxml2-dev
python2-dev
rpm-dev
scanelf
sqlite-dev
xz-dev
zlib-dev
"
checkdepends="
${makedepends}
check
check-dev
py-nose
xz
"
subpackages="
${pkgname}-bash-completion:bashcomp:noarch
${pkgname}-dev
${pkgname}-doc
${pkgname}-libs
py2-${pkgname}:py2
"
source="
${pkgname}-${treeish}.tar.gz::https://github.com/rpm-software-management/createrepo_c/archive/${treeish}.tar.gz
10-libdir.patch
"
builddir="${srcdir}/${pkgname}-${treeish}/"
build() {
mkdir "${builddir}"/build
cd "${builddir}"/build
# Pass cmake variables so
# end user does not need to set LD_LIBRARY_PATH.
# https://cmake.org/Wiki/CMake_RPATH_handling#Always_full_RPATH
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_SKIP_BUILD_RPATH=false \
-DCMAKE_BUILD_WITH_INSTALL_RPATH=false \
-DCMAKE_INSTALL_RPATH=/usr/lib \
-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=true \
-DPYTHON_DESIRED=2
make
}
check() {
cd "${builddir}"/build
make tests
tests/run_gtester.sh
}
package() {
cd "${builddir}"/build
make install/strip DESTDIR=${pkgdir}
}
py2() {
pkgdesc="Python2 bindings for createrepo_c"
depends="python2 ${pkgname}-libs"
# This is architecture-specific and provides a *.so file.
mkdir -p "${subpkgdir}"/usr/lib
mv "${pkgdir}"/usr/lib/python* "${subpkgdir}"/usr/lib/
}
bashcomp() {
depends=""
pkgdesc="Bash completions for ${pkgname}"
install_if="${pkgname}=${pkgver}-r${pkgrel} bash-completion"
mkdir -p "${subpkgdir}"/usr/share/
mv "${pkgdir}"/usr/share/bash-completion "${subpkgdir}"/usr/share/
}
sha512sums="e1e76d4a7c27af812d2ccf48512491377baeaa2506617ef6a6070dd04327a48b7f16e07bf8e84f8793db3fb5c8d0b79cd88cee4f013f86be2244a5750ccf08c0 createrepo_c-0cac54d09b5a2140b625cabad95dc48898e25cdd.tar.gz
df861d341d2acf5aba85d2bf0b959a7b22a29315efb0efeeada3871d7f1c4be035d27ff2408f55f3df24e6e11a8e5d7c4c88fd0ce25e4377b5452e861b40e188 10-libdir.patch"
|