wok rev 20112
Add avrdude
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Wed Oct 11 21:57:55 2017 +0200 (2017-10-11) |
parents | d311ba1a3e38 |
children | 9415addc582d |
files | avrdude/receipt netsurf-sdl/receipt ponyprog-qt/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/avrdude/receipt Wed Oct 11 21:57:55 2017 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="avrdude" 1.7 +VERSION="6.3" 1.8 +CATEGORY="electronics" 1.9 +SHORT_DESC="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers" 1.10 +MAINTAINER="psychomaniak@xakep.ru" 1.11 +LICENSE="GPL" 1.12 +WEB_SITE="http://www.nongnu.org/avrdude/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 1.15 + 1.16 +DEPENDS="libftdi libusb-compat libusb readline elfutils" 1.17 +BUILD_DEPENDS="$DEPENDS libusb-compat-dev libusb-dev libftdi-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./configure \ 1.23 + --mandir=/usr/share/man \ 1.24 + --prefix=/usr \ 1.25 + --sysconfdir=/etc \ 1.26 + --enable-linuxgpio 1.27 + make && make install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/* $fs 1.34 +}
2.1 --- a/netsurf-sdl/receipt Wed Oct 11 21:37:50 2017 +0200 2.2 +++ b/netsurf-sdl/receipt Wed Oct 11 21:57:55 2017 +0200 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 -PACKAGE="netsurf-sdl" 2.7 -VERSION="3.6" 2.8 +PACKAGE="netsurf-sdl" 2.9 +PROVIDE="netsurf-fb" 2.10 +VERSION="3.6" 2.11 CATEGORY="network" 2.12 SHORT_DESC="A simple web browser, works without X using Ctr-Alt-F8 framebuffer." 2.13 MAINTAINER="psychomaniak@xakep.ru" 2.14 LICENSE="GPL2" 2.15 -TARBALL="${PACKAGE/-fb/}-all-$VERSION.tar.gz" 2.16 +TARBALL="${PACKAGE/-sdl/}-all-$VERSION.tar.gz" 2.17 WEB_SITE="http://www.netsurf-browser.org/" 2.18 WGET_URL="http://download.${WEB_SITE:11:19}/netsurf/releases/source-full/$TARBALL" 2.19 TAGS="web-browser"
3.1 --- a/ponyprog-qt/receipt Wed Oct 11 21:37:50 2017 +0200 3.2 +++ b/ponyprog-qt/receipt Wed Oct 11 21:57:55 2017 +0200 3.3 @@ -10,12 +10,16 @@ 3.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.5 WGET_URL="https://github.com/lancos/ponyprog/archive/v${VERSION}.tar.gz" 3.6 3.7 -DEPENDS="libQtGui" 3.8 -BUILD_DEPENDS="Qt4-dev qmake cmake" 3.9 +DEPENDS="libQtGui gcc49-lib-base" 3.10 +BUILD_DEPENDS="Qt4-dev qmake cmake gcc49" 3.11 3.12 # Rules to configure and make the package. 3.13 compile_rules() 3.14 { 3.15 + export LD_LIBRARY_PATH="/usr/libgcc49:$LD_LIBRARY_PATH" 3.16 + export CXX=/usr/bin/i486-slitaz-linux-g++-49 3.17 + export CC=/usr/bin/i486-slitaz-linux-gcc-49 3.18 + 3.19 qmake && make && make install 3.20 } 3.21