Created
November 21, 2015 23:20
-
-
Save tunabrain/baa3a8e6103d2dfc385f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Benedikt Bitterli <[email protected]> | |
_realname=tinyformat | |
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}" | |
pkgver=2.0.1 | |
pkgrel=1 | |
pkgdesc="A minimal type safe printf() replacement." | |
arch=('any') | |
license=('boost') | |
depends=() | |
makedepends=() | |
url=('https://github.com/c42f/tinyformat') | |
source=("http://github.com/c42f/tinyformat/archive/Release-${pkgver}.tar.gz") | |
md5sums=('b1c1e6206e4152ae021813ac40a0e015') | |
build() { | |
cd "${srcdir}/${_realname}-Release-${pkgver}" | |
} | |
package() { | |
cd "${srcdir}/${_realname}-Release-${pkgver}" | |
install -Dm644 tinyformat.h "${pkgdir}/${MINGW_PREFIX}/include/tinyformat.h" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment