summaryrefslogtreecommitdiff
path: root/libre/atool-libre/PKGBUILD
blob: 4ac4264403fac6a707950f99c02e05f824b3bfc8 (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
# $Id: PKGBUILD 78820 2012-10-25 06:47:28Z foutrelis $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: leif_thande <leif.thande@gmail.com>
# Contributor: tranquility <trankas@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
# Contributor (Parabola): André Silva <emulatorman@parabola.nu>

_pkgname=atool
pkgname=atool-libre
pkgver=0.39.0
pkgrel=1.2
pkgdesc="A script for managing file archives of various types, with unar support included and nonfree unace recommendation removed"
arch=('any')
url="http://www.nongnu.org/atool/"
license=('GPL3')
depends=('file' 'perl')
provides=("$_pkgname=$pkgver")
replaces=("$_pkgname")
conflicts=("$_pkgname")
optdepends=('bzip2: for using atool with bzip2 compressed archives'
            'cpio: for using atool with cpio archives'
            'gzip: for using atool with gzip compressed archives'
            'lha: for using atool with lha, lharc and similar archives'
            'xz: for using atool with lzma compressed archives'
            'lzop: for using atool with lzop compressed archives'
            'p7zip: for using atool with 7z archives'
            'tar: for using atool with tar archives'
            'unar: for using atool for unpacking rar archives'
            'zip: for using atool for creating zip archives'
            'unzip: for using atool for unpacking zip archives')

source=(http://savannah.nongnu.org/download/$_pkgname/$_pkgname-$pkgver.tar.gz)
sha256sums=('aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b')

prepare() {
  cd ${srcdir}/${_pkgname}-${pkgver}

  # replace nonfree unrar to unar
  sed -i 's|unrar|unar|g' $(grep -rlI 'unrar')
}

build() {
  cd ${srcdir}/${_pkgname}-${pkgver}

  ./configure --prefix=/usr
}

package() {
  cd ${srcdir}/${_pkgname}-${pkgver}

  make prefix=${pkgdir}/usr install
}