# HG changeset patch # User Hans-G?nter Theisgen # Date 1646030773 -3600 # Node ID 49b4a69029bbd3e0443616c0f0a05dc338554b16 # Parent 77cae427d6b7541439c8e774af170ff687010f0b updated gammu and gammu-dev (1.41.0 -> 1.42.0) diff -r 77cae427d6b7 -r 49b4a69029bb gammu-dev/receipt --- a/gammu-dev/receipt Sun Feb 27 21:20:06 2022 +0000 +++ b/gammu-dev/receipt Mon Feb 28 07:46:13 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="gammu-dev" -VERSION="1.41.0" +VERSION="1.42.0" CATEGORY="system-tools" SHORT_DESC="Gammu development files." MAINTAINER="pankso@slitaz.org" @@ -14,11 +14,9 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib mkdir -p $fs/usr/bin cp -a $install/usr/bin/gammu-config $fs/usr/bin - #cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r 77cae427d6b7 -r 49b4a69029bb gammu/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gammu/description.txt Mon Feb 28 07:46:13 2022 +0100 @@ -0,0 +1,20 @@ +Gammu is the name of the project as well as name of command line utility, +which you can use to control your phone. +It is written in C and built on top of libGammu. + +Gammu command line utility provides access to wide range of phone features, +however support level differs from phone to phone and you might want to +check Gammu Phone Database for user experiences with various phones. + +Generally following features are supported: + +* Call listing, initiating and handling +* SMS retrieval, backup and sending +* MMS retrieval +* Phonebook listing, export and import (also from standard formats such + as vCard) +* Calendar and tasks listing, export and import (also from standard formats + such as vCalendar or iCalendar) +* Retrieval of phone and network information +* Access to phone file system (note that some phones work also as USB + storage devices and those are not accessible through Gammu) diff -r 77cae427d6b7 -r 49b4a69029bb gammu/receipt --- a/gammu/receipt Sun Feb 27 21:20:06 2022 +0000 +++ b/gammu/receipt Mon Feb 28 07:46:13 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="gammu" -VERSION="1.41.0" +VERSION="1.42.0" CATEGORY="system-tools" TAGS="bluetooth" SHORT_DESC="Library and utility to control cell phone." @@ -25,21 +25,19 @@ # Rules to configure and make the package. compile_rules() { - mkdir -p build && - cd build && + mkdir _build && + cd _build && cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_SHARED_LIBS=ON&& - make -j 1 && - make DESTDIR=$DESTDIR install + -D CMAKE_INSTALL_PREFIX=/usr \ + -D BUILD_SHARED_LIBS=ON && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - rm $fs/usr/bin/gammu-config - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + rm $fs/usr/bin/gammu-config + cook_copy_files *.so* }