summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5d4aad013ff7dea508f8d0b80e25595f5c06d90a (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
# Maintainer: codingTornado <milopezv at gmail dot com>
# Maintainer: watashi <zejun dot wu at gmail dot com>
# Contributor: kfgz <kfgz at interia pl>
# Contributor: msilvoso

pkgname=xmount
pkgver=1.3.0
pkgrel=1
pkgdesc="Tool to crossmount between multiple input and output harddisk image files"
arch=('i686' 'x86_64')
license=('GPL')
url="https://www.sits.lu"
depends=('fuse')
makedepends=('make' 'cmake' 'gcc')
options=(!makeflags)
source=(https://code.sits.lu/foss/xmount/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha256sums=('2feae8004dfd846ffa8c1ab13254bb9ccd0df597c05c15be26237ec2f75d295c')

build() {
  cd "${srcdir}"/${pkgname}-${pkgver}
  mkdir build
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
  make
}

package() {
  cd "${srcdir}"/${pkgname}-${pkgver}/build
  make DESTDIR="${pkgdir}" install
}