blob: b6f9f06e9a4d3fa4208f84fc47e1408f2cdd268e (
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
|
# Maintainer: Stunts <f.pinamartins@gmail.com>
pkgname=fastqt
pkgver=0.2.3
pkgrel=1
pkgdesc="FastQC port to Qt5: A quality control tool for high throughput sequence data."
arch=('i686' 'x86_64')
license=('GPL3')
url="https://github.com/labsquare/fastQt"
depends=('qt5-charts' 'karchive' 'hicolor-icon-theme' 'qt5-svg')
source=(https://github.com/labsquare/fastQt/archive/${pkgver}.tar.gz)
sha256sums=('1a66ec8211ea07755deed996dbeda6c04c595c61b77d7e6caf913442b9a637bf')
prepare() {
cd "${srcdir}/fastQt-${pkgver}"
echo ${pkgdir}
sed -i "s|target.path.*|target.path = ${pkgdir}/usr/bin|g" FastQt.pro
sed -i "s|desktop.path.*|desktop.path = ${pkgdir}/usr/share/applications|g" FastQt.pro
sed -i "s|icons.path.*|icons.path = ${pkgdir}/usr/share/icons/hicolor/48x48/apps|g" FastQt.pro
}
build() {
cd "${srcdir}/fastQt-${pkgver}"
qmake
}
package() {
cd "${srcdir}/fastQt-${pkgver}"
make install
}
|