summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f6673053e528a908def8cf69c7aee0c1e8c78e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Florian Schweikert <aur@ist-total.org>
pkgname=sndcut
pkgver=1.0
pkgrel=2
pkgdesc="Let's you generated LPs that you can laser cut from audio files.
 sndcut is a program the generates LP records from audio files - it generates a SVG file that you can laser cut."
arch=('x86' 'x86_64')
url="https://github.com/kallaballa/sndcut"
license=('GPL2')
depends=('libsndfile' 'libsamplerate' 'boost-libs')
makedepends=('boost')
source=(https://github.com/kallaballa/$pkgname/archive/v$pkgver.zip)
sha1sums=('104e2d75537df3122564b63ca9387e090891e2a7')

build() {
  cd $pkgname-$pkgver
  make
}

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