~alpine/aports

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[alpine-aports] [PATCH] testing/timew: new aport

Details
Message ID
<20161019210916.21323-1-matthieu.monnier@enalean.com>
Sender timestamp
1476911356
DKIM signature
missing
Download raw message
Patch: +32 -0
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 <matthieu.monnier@enalean.com>
# Maintainer: Matthieu Monnier <matthieu.monnier@enalean.com>
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
---
Timo Teras <timo.teras@iki.fi>
Details
Message ID
<20161104104202.197f872b@vostro.util.wtbts.net>
In-Reply-To
<20161019210916.21323-1-matthieu.monnier@enalean.com> (view parent)
Sender timestamp
1478248922
DKIM signature
missing
Download raw message
On Wed, 19 Oct 2016 23:09:16 +0200
Matthieu Monnier <matthieu.monnier@enalean.com> wrote:

> 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 <matthieu.monnier@enalean.com>
> +# Maintainer: Matthieu Monnier <matthieu.monnier@enalean.com>
> +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 
> +}

Applied with some whitespace fixes. We prefer tabs over spaces, and no
trailing whitespace.

Thanks.


---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)