File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ # Maintainer: Renato Silva <br.renatosilva@gmail.com>
2+
3+ pkgname=' quilt'
4+ pkgver=' 0.64'
5+ pkgrel=1
6+ pkgdesc=' Manage large numbers of patches'
7+ url=' http://savannah.nongnu.org/projects/quilt'
8+ groups=(' base-devel' )
9+ license=(' GPL2+' )
10+ arch=(' any' )
11+
12+ depends=(bash bzip2 diffstat diffutils findutils gawk gettext gzip patch perl)
13+ source=(" https://savannah.nongnu.org/download/quilt/${pkgname} -${pkgver} .tar.gz" )
14+ sha256sums=(' c4bfd3282214a288e8d3e921ae4d52e73e24c4fead72b5446752adee99a7affd' )
15+
16+ build () {
17+ cd " ${pkgname} -${pkgver} "
18+ ./configure \
19+ --prefix=' /usr' \
20+ --mandir=' /usr/share/man' \
21+ --without-rpmbuild
22+
23+ make
24+ }
25+
26+ package () {
27+ cd " ${pkgname} -${pkgver} "
28+ make prefix=" ${pkgdir} /usr" mandir=" ${pkgdir} /usr/share/man" install
29+ install -Dm644 COPYING " ${pkgdir} /usr/share/licenses/${pkgname} /COPYING"
30+
31+ # Bash completion
32+ mkdir " ${pkgdir} /usr/share/bash-completion"
33+ mv " ${pkgdir} /etc/bash_completion.d" " ${pkgdir} /usr/share/bash-completion/completions"
34+ }
You can’t perform that action at this time.
0 commit comments