wok rev 24585
updated gammu and gammu-dev (1.41.0 -> 1.42.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Feb 28 07:46:13 2022 +0100 (2022-02-28) |
parents | 77cae427d6b7 |
children | 4f7327b96a5a |
files | gammu-dev/receipt gammu/description.txt gammu/receipt |
line diff
1.1 --- a/gammu-dev/receipt Sun Feb 27 21:20:06 2022 +0000 1.2 +++ b/gammu-dev/receipt Mon Feb 28 07:46:13 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gammu-dev" 1.7 -VERSION="1.41.0" 1.8 +VERSION="1.42.0" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Gammu development files." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -14,11 +14,9 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 mkdir -p $fs/usr/bin 1.18 1.19 cp -a $install/usr/bin/gammu-config $fs/usr/bin 1.20 - #cp -a $install/usr/lib/*.*a $fs/usr/lib 1.21 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.22 - cp -a $install/usr/include $fs/usr 1.23 + cook_copy_folders include 1.24 + cook_copy_folders pkgconfig 1.25 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gammu/description.txt Mon Feb 28 07:46:13 2022 +0100 2.3 @@ -0,0 +1,20 @@ 2.4 +Gammu is the name of the project as well as name of command line utility, 2.5 +which you can use to control your phone. 2.6 +It is written in C and built on top of libGammu. 2.7 + 2.8 +Gammu command line utility provides access to wide range of phone features, 2.9 +however support level differs from phone to phone and you might want to 2.10 +check Gammu Phone Database for user experiences with various phones. 2.11 + 2.12 +Generally following features are supported: 2.13 + 2.14 +* Call listing, initiating and handling 2.15 +* SMS retrieval, backup and sending 2.16 +* MMS retrieval 2.17 +* Phonebook listing, export and import (also from standard formats such 2.18 + as vCard) 2.19 +* Calendar and tasks listing, export and import (also from standard formats 2.20 + such as vCalendar or iCalendar) 2.21 +* Retrieval of phone and network information 2.22 +* Access to phone file system (note that some phones work also as USB 2.23 + storage devices and those are not accessible through Gammu)
3.1 --- a/gammu/receipt Sun Feb 27 21:20:06 2022 +0000 3.2 +++ b/gammu/receipt Mon Feb 28 07:46:13 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="gammu" 3.7 -VERSION="1.41.0" 3.8 +VERSION="1.42.0" 3.9 CATEGORY="system-tools" 3.10 TAGS="bluetooth" 3.11 SHORT_DESC="Library and utility to control cell phone." 3.12 @@ -25,21 +25,19 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - mkdir -p build && 3.17 - cd build && 3.18 + mkdir _build && 3.19 + cd _build && 3.20 cmake .. \ 3.21 - -DCMAKE_INSTALL_PREFIX=/usr \ 3.22 - -DBUILD_SHARED_LIBS=ON&& 3.23 - make -j 1 && 3.24 - make DESTDIR=$DESTDIR install 3.25 + -D CMAKE_INSTALL_PREFIX=/usr \ 3.26 + -D BUILD_SHARED_LIBS=ON && 3.27 + make && 3.28 + make install DESTDIR=$DESTDIR 3.29 } 3.30 3.31 # Rules to gen a SliTaz package suitable for Tazpkg. 3.32 genpkg_rules() 3.33 { 3.34 - mkdir -p $fs/usr/lib 3.35 - 3.36 - cp -a $install/usr/bin $fs/usr 3.37 - rm $fs/usr/bin/gammu-config 3.38 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.39 + cook_copy_folders bin 3.40 + rm $fs/usr/bin/gammu-config 3.41 + cook_copy_files *.so* 3.42 }