From 2f182b49119544c73a57d979aed3f6bdcf52507a Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 6 Jun 2013 12:57:06 -0400 Subject: [PATCH 1/2] added profile-sync-daemon template --- srcpkgs/profile-sync-daemon/template | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 srcpkgs/profile-sync-daemon/template diff --git a/srcpkgs/profile-sync-daemon/template b/srcpkgs/profile-sync-daemon/template new file mode 100644 index 00000000000..d58ca175fcd --- /dev/null +++ b/srcpkgs/profile-sync-daemon/template @@ -0,0 +1,26 @@ +# Template file for 'profile-sync-daemon' +pkgname=profile-sync-daemon +version=5.36.1 +revision=1 +depends="rsync" +short_desc="Syncs browser profiles to tmpfs." +maintainer="graysky " +license="MIT" +homepage="https://github.com/graysky2/profile-sync-daemon" +distfiles="http://repo-ck.com/source/$pkgname/$pkgname-$version.tar.xz" +checksum=bf2c1e133b9df6749e577e831007d07854664d838ef9f7670b8b4cb17d14d951 +long_desc=" +profile-sync-daemon symlinks and sync browser profiles to RAM (fmpfs) thus +reducing SSD/HDD calls and speeding-up browsers." + +do_install() { + make DESTDIR="$DESTDIR" install-systemd-all + install -Dm644 MIT "$DESTDIR/usr/share/licenses/$pkgname/LICENSE" +} + +profile-sync-daemon_package() { + conf_files="/etc/psd.conf" + pkg_install() { + vmove all + } +} From da1829e3f3e283e57c7c0fe0a09fdb70ff8d62be Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 6 Jun 2013 12:59:19 -0400 Subject: [PATCH 2/2] corrected typo --- srcpkgs/profile-sync-daemon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/profile-sync-daemon/template b/srcpkgs/profile-sync-daemon/template index d58ca175fcd..79147ea0a59 100644 --- a/srcpkgs/profile-sync-daemon/template +++ b/srcpkgs/profile-sync-daemon/template @@ -10,7 +10,7 @@ homepage="https://github.com/graysky2/profile-sync-daemon" distfiles="http://repo-ck.com/source/$pkgname/$pkgname-$version.tar.xz" checksum=bf2c1e133b9df6749e577e831007d07854664d838ef9f7670b8b4cb17d14d951 long_desc=" -profile-sync-daemon symlinks and sync browser profiles to RAM (fmpfs) thus +profile-sync-daemon symlinks and sync browser profiles to RAM (tmpfs) thus reducing SSD/HDD calls and speeding-up browsers." do_install() {