X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-wr0-f193.google.com (mail-wr0-f193.google.com [209.85.128.193]) by lists.alpinelinux.org (Postfix) with ESMTP id 761CC5C4EFD for ; Sun, 2 Jul 2017 23:22:52 +0000 (GMT) Received: by mail-wr0-f193.google.com with SMTP id k67so43268598wrc.1 for ; Sun, 02 Jul 2017 16:22:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=92HWsTCSeH9319PKpp0oX6gme0GKoYGGWsODvv/i5zE=; b=cq8vWaile8++5QefL1qIXilgGxTlhXgs1MJZnKcVad6AUCEGVb/l/mENgVW4ARnHer gxZPwcaSIhZSof9C//Lhh2ZlgHSNiD2lixgT6yX9BlHNPHsAwWiGh7oWnOlbZRkkv1IJ L91Ieovg5d1VCZ+gHU7lMlh5GICGaU63ddCiMQSkhyOf4ZXe8L81ShFhZ+pCL3QGV8mq CtJI0LNkMFbVVAY32FEMREpGm4Y79bzJyRoiXVA32MIHuUICWWlesInbs9DeJbU2pg8l A9lcMt8tOpx4Jb1sCv7t6vkAU9D5Gtu1wvArO0JQmXeeCAJzAWHFFMsLOUQs3mt2jLyz +/rw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=92HWsTCSeH9319PKpp0oX6gme0GKoYGGWsODvv/i5zE=; b=cEK3Gw/IVvNUtvKDQA9wDkrsqdXJ1hc0CRPCPjAxpWAyJZzL7pY372sJ2xYsIrrpV5 hxeCGEWOAxytqJPpIkDgVPqN3vPJYQH1bvRohE/fPFBNaiYD7w3uhIPwDDLSjn3wKfif R7mh+PR3OZ0HRxlfsi9AaXJ1P28CWvlpeLI8o1qTHjlnej5vDGKeyveiu2W+UTJ+Pdaq h0JQuf44oL4M56H3CNgFlbqXvmAt8vhnyyKDrwFH8WwuxybGM0mXsDz/OIb/bG6jmSU7 Wo6koq1hKW9PgmmK26izw2nmFOPnp2LPfaiPRC54bwsTEFuR9DI2kIDeF5Q7liWKNDTG Fg5Q== X-Gm-Message-State: AKS2vOzSEuzCABVfSxcpeLgsYWMj9mgFiJVgpe8bNeKEik5LBU0MaGqZ YL0fX6xNMVe2eMuW X-Received: by 10.223.171.181 with SMTP id s50mr19713101wrc.129.1499037771586; Sun, 02 Jul 2017 16:22:51 -0700 (PDT) Received: from localhost.localdomain ([31.223.25.233]) by smtp.gmail.com with ESMTPSA id l6sm18626443wmg.31.2017.07.02.16.22.50 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 02 Jul 2017 16:22:51 -0700 (PDT) From: Taner Tas To: alpine-aports@lists.alpinelinux.org Cc: Taner Tas Subject: [alpine-aports] [PATCH] testing/libva-utils: new aport Date: Sun, 2 Jul 2017 23:22:40 +0000 Message-Id: <20170702232240.10772-1-taner76@gmail.com> X-Mailer: git-send-email 2.13.2 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/01org/libva-utils Intel VA-API Media Applications and Scripts for libva --- testing/libva-utils/APKBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 testing/libva-utils/APKBUILD diff --git a/testing/libva-utils/APKBUILD b/testing/libva-utils/APKBUILD new file mode 100644 index 00000000..7b1efd06 --- /dev/null +++ b/testing/libva-utils/APKBUILD @@ -0,0 +1,36 @@ +# Maintainer: Taner Tas +pkgname=libva-utils +pkgver="1.8.2" +pkgrel=0 +pkgdesc="Intel VA-API Media Applications and Scripts for libva" +url="https://github.com/01org/libva-utils" +arch="all" +license="custom" +makedepends="mesa-dev libva-dev autoconf automake libtool" +source="${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz" +options="!check" +#builddir="${srcdir}/${pkgver}" +build() { + cd "$builddir" + ./autogen.sh \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --disable-wayland \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --disable-nls + make +} + +check(){ + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="e6d1e025d1c27112bf61869fa097a27c81bff9fb1ed5226842f3c7685852b4cc8903b0a29204d3c85bc4513dab9331b327de0f93c9493a411ab15e7e577ce616 libva-utils-1.8.2.tar.gz" -- 2.13.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---