X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f47.google.com (mail-lf0-f47.google.com [209.85.215.47]) by lists.alpinelinux.org (Postfix) with ESMTP id 1455D5C4348 for ; Wed, 19 Oct 2016 21:09:39 +0000 (GMT) Received: by mail-lf0-f47.google.com with SMTP id l131so40935959lfl.2 for ; Wed, 19 Oct 2016 14:09:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=enalean-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=7sg72dwJ3SmLHXoYSRDZkhbSG+JZkAzyjIUMSonofVE=; b=pClCrDx0telVcdh/snRLMzvIfIpFAMbjiSnTNDPOuE82Lj3TA0jm0BTLIMxo3BN4sT QB4CS5RedZ711yUb9UnwUA6e3dPc3yqx8loK8tQiJaxd9LRoYIOK1hzZ/ZDNYcEyrYWw CFM/gbRQrcmlSozGMnpv/ui2thj+VZbRs5PM+B/0//zv3EPADJs1OMZ71YUXgy49XLgi TRlP3TSIn0SAlQHt1eMirSWqlIM8OiTpTr3YJKrmJspRhPvzVq5jduUaLOxDWGak/9MG 2DfS/Ll9Op3QRU9jRedoeD4f2bF9MywMoRIJH+w3BLdePcEpkbsG6Q5qEb4WqD1X2LCP Dzkg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=7sg72dwJ3SmLHXoYSRDZkhbSG+JZkAzyjIUMSonofVE=; b=awoico0B6/8sjCyK49pZjuYF5SeBKKb3BamFE5Z4mAbOki2mT8xi7kcRBqNcWQbbSA new/VoSyA1WQA0A1f0M7TPQv4flX1HW0AuhxCKhucp/x6CiOOiy50YQKIaVWZpuhlDWS MmzjlrQrRO67CgFlWlE/rEWzpxqXo8HkOYGq6AFGzkdCzakz3qQFhY7X2fIaDvpRMT0h qvHkJaHQ7zV8tGSW4zdC73njDaH4RifloRYqVOE6yDQYKABv1rU8x2gyZ2MgBo2971lW peIgkCGuqF9DyFwWdtDt9GS8Kot6kJ1NT7KCGy03Kke0Md2SiWtDYc5nvl1XwGpohLe1 DiSA== X-Gm-Message-State: AA6/9RlukusDap+2EF1bOS1x0svPQEYUU1uB8v4bYtjzNepnYRIhudF/PDaKzkbzmY2nGUGH X-Received: by 10.28.50.66 with SMTP id y63mr1089543wmy.44.1476911378553; Wed, 19 Oct 2016 14:09:38 -0700 (PDT) Received: from work.home (AGrenoble-652-1-364-106.w82-122.abo.wanadoo.fr. [82.122.239.106]) by smtp.gmail.com with ESMTPSA id qo8sm72295152wjc.46.2016.10.19.14.09.37 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 19 Oct 2016 14:09:38 -0700 (PDT) From: Matthieu Monnier To: alpine-aports@lists.alpinelinux.org Cc: Matthieu Monnier Subject: [alpine-aports] [PATCH] testing/timew: new aport Date: Wed, 19 Oct 2016 23:09:16 +0200 Message-Id: <20161019210916.21323-1-matthieu.monnier@enalean.com> X-Mailer: git-send-email 2.8.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://taskwarrior.org/ Timewarrior is a command line time tracking application. --- testing/timew/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/timew/APKBUILD diff --git a/testing/timew/APKBUILD b/testing/timew/APKBUILD new file mode 100644 index 0000000..5741ef9 --- /dev/null +++ b/testing/timew/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Matthieu Monnier +# Maintainer: Matthieu Monnier +pkgname=timew +pkgver=1.0.0 +pkgrel=0 +pkgdesc="Timewarrior is a command line time tracking application." +url="http://taskwarrior.org/" +arch="all" +license="MIT" +depends="" +makedepends="cmake" +install="" +subpackages="$pkgname-doc" +source="http://taskwarrior.org/download/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + cmake . -DCMAKE_BUILD_TYPE=release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="edd5f8a064e5c8f030324e3d98b79d54 timew-1.0.0.tar.gz" +sha256sums="ac027910e1e8365bdd218a8b42389b26d017d38d3c96516c408db6d5a44e0bb5 timew-1.0.0.tar.gz" +sha512sums="0539ff93b2375c154d126c39aa84f21b57b62f51c220c80b2e323a4d6aefd2eda6f87c04112e096222102b019ee3683a78b9ee9d6fbf6736d4a34c529f6152f5 timew-1.0.0.tar.gz" -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---