wok-next view mdiedit/receipt @ rev 20486

outguess: fix install path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 10:46:52 2018 +0100 (2018-03-12)
parents
children c0521c689857
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mdiedit"
4 VERSION="20171204"
5 COMMIT="3351b94"
6 CATEGORY="text"
7 SHORT_DESC="Simple text editor with MDI interface"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="BSD"
10 WEB_SITE="https://github.com/selairi/mdiedit"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/selairi/mdiedit/archive/$COMMIT.tar.gz"
15 BUILD_DEPENDS="cmake qt5-dev mesa17-dev"
17 compile_rules() {
18 cd mdiedit
20 mkdir build; cd build
21 cmake \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 .. &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="qt5-base"
31 }