blob: b199c4782e1d7341e4d4a5235cd4758fbbd25cff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Interface simple pour scanner
# URL: https://launchpad.net/simple-scan/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: gtk3, dconf, colord, sane, yelp-tools, intltool
# Run on: gtk3,dconf,colord,sane
name=simple-scan
version=3.4.2
release=1
source=(https://launchpad.net/$name/${version:0:3}/$version/+download/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-schemas-compile
make
make DESTDIR=$PKG install
}
|