blob: 3a92aa5712ae45ebefc48aaef4c3e3cb6fd4d613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit common-lisp-3
DESCRIPTION="Convert strings between camelCase, param-case, snake_case and more"
HOMEPAGE="https://github.com/rudolfochrist/cl-change-case"
SRC_URI="https://github.com/rudolfochrist/cl-change-case/archive/refs/tags/${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT=0
KEYWORDS="~amd64"
RDEPENDS="dev-lisp/cl-ppcre
dev-lisp/cl-ppcre-unicode"
PATCHES=(
"${FILESDIR}/remove-uiop-read-file-from-asd.patch"
)
|