blob: 57d12689a714c77c0ccf4d9764917a989119a63b (
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
|
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=sgsearch
pkgver=1.2.5
pkgrel=1
pkgdesc="SGSearch is a frontend to the find and grep commands allowing respectively to search for file names or file content. It is meant to be a companion to file managers like Thunar (extension is provided) and works over GVFS."
url="https://sgsearch.tuxfamily.org/"
arch=('x86_64' 'i686')
license=('Other')
depends=('gtk3' 'atk' 'thunar')
optdepends=()
makedepends=(gcc cmake make imagemagick)
conflicts=()
replaces=()
backup=()
install=
source=("https://download.tuxfamily.org/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('c8dd909fc589adf97dee9ed1118e8f113eff2bd24964de21479a775eca234b12')
build() {
cd ${pkgname}-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX="/usr/" ./
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|