![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 36c643c247b6f5397ae957581c6e729ea9844679 Author: Danny Rawlins <monster.romster@gmail.com> Date: Tue May 17 23:06:43 2016 +1000 libechonest: initial import diff --git a/libechonest/.footprint b/libechonest/.footprint new file mode 100644 index 0000000..392c23b --- /dev/null +++ b/libechonest/.footprint @@ -0,0 +1,26 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/echonest/ +-rw-r--r-- root/root usr/include/echonest/Artist.h +-rw-r--r-- root/root usr/include/echonest/ArtistTypes.h +-rw-r--r-- root/root usr/include/echonest/AudioSummary.h +-rw-r--r-- root/root usr/include/echonest/Catalog.h +-rw-r--r-- root/root usr/include/echonest/CatalogArtist.h +-rw-r--r-- root/root usr/include/echonest/CatalogItem.h +-rw-r--r-- root/root usr/include/echonest/CatalogSong.h +-rw-r--r-- root/root usr/include/echonest/CatalogUpdateEntry.h +-rw-r--r-- root/root usr/include/echonest/CommonTypes.h +-rw-r--r-- root/root usr/include/echonest/Config.h +-rw-r--r-- root/root usr/include/echonest/Genre.h +-rw-r--r-- root/root usr/include/echonest/Playlist.h +-rw-r--r-- root/root usr/include/echonest/Song.h +-rw-r--r-- root/root usr/include/echonest/Track.h +-rw-r--r-- root/root usr/include/echonest/TypeInformation.h +-rw-r--r-- root/root usr/include/echonest/Util.h +-rw-r--r-- root/root usr/include/echonest/echonest_export.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libechonest.so -> libechonest.so.2.3 +lrwxrwxrwx root/root usr/lib/libechonest.so.2.3 -> libechonest.so.2.3.1 +-rwxr-xr-x root/root usr/lib/libechonest.so.2.3.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libechonest.pc diff --git a/libechonest/.md5sum b/libechonest/.md5sum new file mode 100644 index 0000000..83d687f --- /dev/null +++ b/libechonest/.md5sum @@ -0,0 +1 @@ +d8c60545b056145dc66882971a0acf9c libechonest-2.3.1.tar.bz2 diff --git a/libechonest/Pkgfile b/libechonest/Pkgfile new file mode 100644 index 0000000..10dc0af --- /dev/null +++ b/libechonest/Pkgfile @@ -0,0 +1,25 @@ +# Description: C++ library for interfacing with Echo Nest. +# URL: https://projects.kde.org/projects/playground/libs/libechonest +# Maintainer: Danny Rawlins, crux at romster dot me +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: qjson + +name=libechonest +version=2.3.1 +release=1 +source=(http://files.lfranchi.com/$name-$version.tar.bz2) + +build() { + cd $name-$version + + install -d build + cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE='Release' \ + -DECHONEST_BUILD_TESTS='False' + + make + make DESTDIR=$PKG install +}