wok rev 24581

updated libspectrum and libspectrum-dev (1.4.4 -> 1.5.0)
author Hans-G?nter Theisgen
date Sun Feb 27 17:07:05 2022 +0100 (2022-02-27)
parents 957a0d04295e
children 3ced3a494edd
files libspectrum-dev/receipt libspectrum/description.txt libspectrum/receipt
line diff
     1.1 --- a/libspectrum-dev/receipt	Sun Feb 27 16:54:07 2022 +0100
     1.2 +++ b/libspectrum-dev/receipt	Sun Feb 27 17:07:05 2022 +0100
     1.3 @@ -1,21 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libspectrum-dev"
     1.7 -VERSION="1.4.4"
     1.8 +VERSION="1.5.0"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Development files for libspectrum."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="http://fuse-emulator.sourceforge.net/libspectrum.php"
    1.14 +WEB_SITE="https://sourceforge.net/projects/fuse-emulator/"
    1.15  
    1.16 +DEPENDS="libspectrum"
    1.17  WANTED="libspectrum"
    1.18 -DEPENDS="libspectrum"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	mkdir -p $fs/usr/lib
    1.24 -
    1.25 -	cp -a $install/usr/include	$fs/usr
    1.26 -	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.27 +	cook_copy_folders	include
    1.28 +	cook_copy_folders	pkgconfig
    1.29 +	cook_copy_files		*.*a
    1.30  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libspectrum/description.txt	Sun Feb 27 17:07:05 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +libspectrum is a library designed to make the input and output of
     2.5 +some ZX Spectrum emulator files slightly easier.
     2.6 +It is intended to be usable on Unix variants, Win32 and Mac OS X.
     2.7 +Currently, it is mainly (only?) used by Fuse, but other Spectrum
     2.8 +emulator and utility authors are encouraged to use it.
     3.1 --- a/libspectrum/receipt	Sun Feb 27 16:54:07 2022 +0100
     3.2 +++ b/libspectrum/receipt	Sun Feb 27 17:07:05 2022 +0100
     3.3 @@ -1,12 +1,12 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libspectrum"
     3.7 -VERSION="1.4.4"
     3.8 +VERSION="1.5.0"
     3.9  CATEGORY="misc"
    3.10  SHORT_DESC="ZX Spectrum emulator support library."
    3.11  MAINTAINER="slaxemulator@gmail.com"
    3.12  LICENSE="GPL2"
    3.13 -WEB_SITE="http://fuse-emulator.sourceforge.net/libspectrum.php"
    3.14 +WEB_SITE="https://sourceforge.net/projects/fuse-emulator/"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17  WGET_URL="$SF_MIRROR/fuse-emulator/$TARBALL"
    3.18 @@ -25,13 +25,12 @@
    3.19  compile_rules()
    3.20  {
    3.21  	./configure $CONFIGURE_ARGS &&
    3.22 -	make -j 1 &&
    3.23 +	make &&
    3.24  	make install
    3.25  }
    3.26  
    3.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.28  genpkg_rules()
    3.29  {
    3.30 -	mkdir -p $fs/usr/lib
    3.31 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.32 +	cook_copy_files	*.so*
    3.33  }