mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:27:14 +08:00
33 lines
765 B
Bash
33 lines
765 B
Bash
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
|
# Contributor: Evangelos Foutras <evangelos@foutrelis.com>
|
|
|
|
pkgname=libgudev
|
|
pkgver=230
|
|
pkgrel=1
|
|
pkgdesc="GObject bindings for libudev"
|
|
arch=('i686' 'x86_64')
|
|
url="https://wiki.gnome.org/Projects/libgudev"
|
|
license=('LGPL2.1')
|
|
depends=('systemd>=221')
|
|
makedepends=('systemd' 'gobject-introspection')
|
|
provides=('libgudev-1.0.so')
|
|
conflicts=('systemd<221')
|
|
source=(https://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('a2e77faced0c66d7498403adefcc0707105e03db71a2b2abd620025b86347c18')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-gtk-doc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|